projects
/
emacs.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
13824c4
)
* lisp/bindings.el (page-navigation-repeat-map): Fix bootstrap.
author
Glenn Morris
<rgm@gnu.org>
Fri, 20 Aug 2021 22:56:27 +0000
(15:56 -0700)
committer
Glenn Morris
<rgm@gnu.org>
Fri, 20 Aug 2021 22:56:27 +0000
(15:56 -0700)
lisp/bindings.el
patch
|
blob
|
history
diff --git
a/lisp/bindings.el
b/lisp/bindings.el
index b67c6ad63828adbf8a9effd2f8752db5eee46171..b8bf0c1a6f640853c04bc50695f9edaac686bd54 100644
(file)
--- a/
lisp/bindings.el
+++ b/
lisp/bindings.el
@@
-1437,8
+1437,8
@@
if `inhibit-field-text-motion' is non-nil."
(defvar page-navigation-repeat-map
(let ((map (make-sparse-keymap)))
- (define-key map
(kbd "]")
#'forward-page)
- (define-key map
(kbd "[")
#'backward-page)
+ (define-key map
"]"
#'forward-page)
+ (define-key map
"["
#'backward-page)
map)
"Keymap to repeat page navigation key sequences. Used in `repeat-mode'.")